home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
misc_pto
/
ascsu221
/
width.asi
< prev
next >
Wrap
Text File
|
1991-11-11
|
574b
|
39 lines
start:
rem WIDTH.COM
rem This program is designed to change from 40- to 80-column mode and back again
rem at whim.
rem It requires approximately 64K of RAM.
a$=command$
if a$=" 40" then width40:
if a$=" 80" then width80:
goto help:
rem This is the routine for 80 column mode.
width80:
width 80
goto finish:
rem This is the routine for 40 column mode.
width40:
width 40
goto finish:
help:
print
print
print "You must specify the width, either 40 or 80 column mode."
print
print
finish:
end